home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / vpasswd_cgi.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  64 lines

  1. #
  2. # (C) Michel Arboi 2002
  3. #
  4. # GNU Public Licence
  5. #
  6. # References
  7. # Date: Thu, 24 Oct 2002 10:41:48 -0700 (PDT)
  8. # From:"Jeremy C. Reed" <reed@reedmedia.net> 
  9. # To:bugtraq@securityfocus.com
  10. # Subject: Re: vpopmail CGIapps vpasswd vulnerabilities
  11. # In-Reply-To: <200210241126.33510.n.bugtraq@icana.org.ar>
  12. # Message-ID: <Pine.LNX.4.43.0210241020040.25224-100000@pilchuck.reedmedia.net>
  13. #
  14.  
  15. if(description)
  16. {
  17.  script_id(11165);
  18.  script_bugtraq_id(6038);
  19.  
  20.  script_version ("$Revision: 1.6 $");
  21.  name["english"] = "vpasswd.cgi";
  22.  script_name(english:name["english"]);
  23.  
  24.  desc["english"] = "The 'vpasswd.cgi' CGI is installed. Some versions
  25. do not properly check for special characters and allow
  26. a cracker to execute any command on your system.
  27.  
  28. *** Warning : Nessus solely relied on the presence of this CGI, it did not
  29. *** determine if you specific version is vulnerable to that problem
  30.  
  31. Solution : remove it from /cgi-bin.
  32.  
  33. Risk factor : High";
  34.  
  35.  
  36.  
  37.  script_description(english:desc["english"]);
  38.  
  39.  summary["english"] = "Checks for the presence of vpasswd.cgi";
  40.  summary["francais"] = "VΘrifie la prΘsence de vpasswd.cgi";
  41.  
  42.  script_summary(english:summary["english"], francais:summary["francais"]);
  43.  
  44.  script_category(ACT_GATHER_INFO);
  45.  
  46.  
  47.  script_copyright(english:"This script is Copyright (C) 2002 Michel Arboi",
  48.         francais:"Ce script est Copyright (C) 2002 Michel Arboi");
  49.  family["english"] = "CGI abuses";
  50.  family["francais"] = "Abus de CGI";
  51.  script_family(english:family["english"], francais:family["francais"]);
  52.  script_dependencie("find_service.nes", "no404.nasl");
  53.  script_require_ports("Services/www", 80);
  54.  exit(0);
  55. }
  56.  
  57. # The script code starts here
  58. include("http_func.inc");
  59. include("http_keepalive.inc");
  60. port = get_http_port(default:80);
  61.  
  62. res = is_cgi_installed_ka(item:"vpasswd.cgi", port:port);
  63. if(res)security_warning(port);
  64.